math/rand.lockedSource.s (field)

7 uses

	math/rand (current package)
		rand.go#L501: 	s  *rngSource
		rand.go#L506: 	n = r.s.Int63()
		rand.go#L513: 	n = r.s.Uint64()
		rand.go#L535: 	if r.s == nil {
		rand.go#L536: 		r.s = newSource(seed)
		rand.go#L538: 		r.s.Seed(seed)
		rand.go#L545: 	n, err = read(p, r.s, readVal, readPos)